body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #333; /* Dark background */
}

.age-verification-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.logo-container img {
    max-width: 120px; /* Ajusta esto según el tamaño de tu logo */
    margin-bottom: 30px;
}

.age-verification-content {
    text-align: center;
    color: #fff;
}

h1 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 30px;
}

.buttons .button {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background-color: #FFA500; /* Orange button */
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttons .button.enter {
    background-color: #FFA500; /* Orange button */
}

.buttons .button.exit {
    background-color: #555; /* Grey button */
}

.buttons .button:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .buttons .button {
        width: 100%;
        margin: 10px 0;
    }
}
.logo-text {
    color: red; /* Color rojo para el texto del 'logo' */
    font-size: 3rem; /* Tamaño grande para simular un logo */
    font-weight: bold; /* Hacer el texto en negrita */
    margin-bottom: 30px;
}